Firebase Data Push Experiement

This is a notebook to experiment with pushing data to Firebase using our functions.


In [ ]:
%run 'analyseArticle.ipynb'
%run 'Firebase.ipynb'

In [2]:
article_url = "http://www.opengovasia.com/articles/8107-consortium-led-by-mas-and-abs-develops-software-prototypes-for-decentralised-inter-bank-payments-using-blockchain-technology"

parameters = analyseArticle(article_url)

title = parameters["title"]
url = parameters["url"]
date = parameters["date"]
authors = parameters["authors"]
date = parameters["date"]
summary = parameters["summary"]
polarity = parameters["polarity"]
subjectivity = parameters["subjectivity"]
keywords = parameters["keywords"]
images = parameters["images"]
videos = parameters["videos"]
text = parameters["text"]

sendToFirebase(title, url, authors, date, summary, polarity, subjectivity, keywords, images, videos, text)

In [ ]: